home *** CD-ROM | disk | FTP | other *** search
- /* $VER: HTMLEXT Modul: imagefx.mod V 0.1.5 by Juan Manuel Wehrli 1999
- Voraussetzung: ImageFX 3.x oder besser
- */
-
- if ~show("L",rexxreqtools.library) then do
- call addlib("rexxreqtools.library",0,-30,0)
- end
- if ~show("L",rexxtricks.library) then do
- call addlib("rexxtricks.library",0,-30,0)
- end
-
- NL = '0a'x
-
- PARSE ARG befehl file
- OPTIONS RESULTS
- ADDRESS COMMAND
-
- if befehl = OPENNEW then do
- if ~show('P','IMAGEFX.1') then do
- 'c:WBrun <>NIL: ImageFX3:ImageFX'
- 'sys:rexxc/WaitForPort IMAGEFX.1'
- end
- file = STRIP(file)
- ADDRESS IMAGEFX.1
- ScreenToFront
- LOADBUFFER '"' || file || '"' New
-
- end
-
- if befehl = OPENNEWS then do
- if ~show('P','IMAGEFX.1') then do
- 'c:WBrun <>NIL: ImageFX3:ImageFX'
- 'sys:rexxc/WaitForPort IMAGEFX.1'
- end
- ADDRESS IMAGEFX.1
- ScreenToFront
- file = STRIP(file)
- LOADBUFFER '"' || file || '"' New
- end
-
-